home *** CD-ROM | disk | FTP | other *** search
/ Nejlepší České Hry 2007 / Nejlepší české hry 2007.iso / hry / Becher Tycoon / scripts / GUI.scr < prev    next >
Text File  |  2006-08-30  |  6KB  |  194 lines

  1. // new buttonstyle nbutt;
  2. // styly pre upravu terenu
  3. new buttonstyle ter_flat;
  4. with ter_flat;
  5.       unPrTexture = 'data/GUI/tlacitka.png';
  6.       PrTexture = 'data/GUI/tlacitka.png';
  7.       unPrUV = rect(424,370,424+38,370+38);
  8.       PrUV = rect(424,370,424+38,370+38);
  9.       unPrSize = makepoint(38,38);
  10.       unPrColor = colorrgba(235,235,235,200);
  11.       unPrOffset = makepoint(0,0);
  12.       PrSize = makepoint(38,38);
  13.       PrColor = colorrgba(235,235,235,200);
  14.       PrOffset = makepoint(0,0);
  15.       transTime = 200;
  16.  
  17.       fontColor = colorrgba(0,0,0,255);
  18.       fontRect = rect(5,5,5,5);
  19.       fontName = 'Freebooter';
  20.       fontwidth = 10;
  21.       fontHeight = 30;
  22.       fontWeight = 3;
  23.       highlite = 1;
  24.       hiSize = makepoint(38,38);
  25.       hiOffset = makepoint(0,0);
  26.       hiTrTime = 200;
  27.       hiColor = colorrgba(255,255,255,255);
  28. without;
  29.  
  30. new buttonstyle ter_up;
  31. ter_up = copybs(ter_flat);
  32. ter_up.unPrUV = rect(375,370,375+38,370+38);
  33. ter_up.PrUV = rect(375,370,375+38,370+38);
  34.  
  35. new buttonstyle ter_down;
  36. ter_down = copybs(ter_flat);
  37. ter_down.unPrUV = rect(326,370,326+38,370+38);
  38. ter_down.PrUV = rect(326,370,326+38,370+38);
  39.  
  40. new buttonstyle bager;
  41. bager = copybs(ter_flat);
  42. bager.unPrUV = rect(277,370,277+38,370+38);
  43. bager.PrUV = rect(277,370,277+38,370+38);
  44.  
  45. new buttonstyle mouse;
  46. mouse = copybs(ter_flat);
  47. mouse.unPrUV = rect(473,290,473+38,290+38);
  48. mouse.PrUV = rect(473,290,473+38,290+38);
  49.  
  50. new buttonstyle railway;
  51. railway = copybs(ter_flat);
  52. railway.unPrUV = rect(277,290,277+38,290+38);
  53. railway.PrUV = rect(277,290,277+38,290+38);
  54.  
  55. new buttonstyle railwaystation;
  56. railwaystation = copybs(ter_flat);
  57. railwaystation.unPrUV = rect(375,290,375+38,290+38);
  58. railwaystation.PrUV = rect(375,290,375+38,290+38);
  59.  
  60. new buttonstyle railwaydepo;
  61. railwaydepo = copybs(ter_flat);
  62. railwaydepo.unPrUV = rect(424,290,424+38,290+38);
  63. railwaydepo.PrUV = rect(424,290,424+38,290+38);
  64.  
  65. new buttonstyle road;
  66. road = copybs(ter_flat);
  67. road.unPrUV = rect(277,329,277+38,329+38);
  68. road.PrUV = rect(277,329,277+38,329+38);
  69.  
  70. new buttonstyle road2;
  71. road2 = copybs(ter_flat);
  72. road2.unPrUV = rect(326,329,326+38,329+38);
  73. road2.PrUV = rect(326,329,326+38,329+38);
  74.  
  75. new buttonstyle road2dark;
  76. road2dark = copybs(road2);
  77. road2dark.unPrColor = colorrgba(150,150,150,160);
  78. road2dark.PrColor = colorrgba(150,150,150,160);
  79. road2dark.hiColor = colorrgba(150,150,150,160);
  80.  
  81.  
  82. new buttonstyle roadstation;
  83. roadstation = copybs(ter_flat);
  84. roadstation.unPrUV = rect(424,329,424+38,329+38);
  85. roadstation.PrUV = rect(424,329,424+38,329+38);
  86.  
  87. new buttonstyle roadgarage;
  88. roadgarage = copybs(ter_flat);
  89. roadgarage.unPrUV = rect(473,329,473+38,329+38);
  90. roadgarage.PrUV = rect(473,329,473+38,329+38);
  91.  
  92. new buttonstyle becherdistsml;
  93. becherdistsml = copybs(ter_flat);
  94. becherdistsml.unPrUV = rect(473,370,473+38,370+38);
  95. becherdistsml.PrUV = rect(473,370,473+38,370+38);
  96.  
  97. new buttonstyle becherdistbig;
  98. becherdistbig = copybs(ter_flat);
  99. becherdistbig.unPrUV = rect(473,410,473+38,410+38);
  100. becherdistbig.PrUV = rect(473,410,473+38,410+38);
  101.  
  102. new buttonstyle rectal;
  103. rectal = copybs(ter_flat);
  104. rectal.unPrTexture = 'data/GUI/test1.png';
  105. rectal.PrTexture = 'data/GUI/test1.png';
  106.  
  107. new buttonstyle mmenuexit;
  108. with mmenuexit;
  109.       unPrTexture = 'data/GUI/MainMenuButtons.png';
  110.       PrTexture = 'data/GUI/MainMenuButtons.png';
  111.       unPrUV = rect(0,0,64,64);
  112.       PrUV = rect(0,0,64,64);
  113.       unPrSize = makepoint(64,64);
  114.       unPrColor = colorrgba(230,230,230,255);
  115.       unPrOffset = makepoint(0,0);
  116.       PrSize = makepoint(64,64);
  117.       PrColor = colorrgba(230,230,230,255);
  118.       PrOffset = makepoint(0,0);
  119.       transTime = 200;
  120.  
  121.       fontColor = colorrgba(0,0,0,255);
  122.       fontRect = rect(5,5,5,5);
  123.       fontName = 'Freebooter';
  124.       fontwidth = 10;
  125.       fontHeight = 30;
  126.       fontWeight = 3;
  127.       highlite = 1;
  128.       hiSize = makepoint(64,64);
  129.       hiOffset = makepoint(0,0);
  130.       hiTrTime = 200;
  131.       hiColor = colorrgba(255,255,255,255);
  132. without;
  133.  
  134. new buttonstyle mmenuabout;
  135. mmenuabout = copybs(mmenuexit);
  136. mmenuabout.unPrUV = rect(64,0,128,64);
  137. mmenuabout.PrUV = rect(64,0,128,64);
  138.  
  139. new buttonstyle mmenustart;
  140. mmenustart = copybs(mmenuexit);
  141. mmenustart.unPrUV = rect(128,0,192,64);
  142. mmenustart.PrUV = rect(128,0,192,64);
  143.  
  144. new buttonstyle mmenu_road;
  145. with mmenu_road;
  146.       unPrTexture = 'data/GUI/tlacitka.png';
  147.       PrTexture = 'data/GUI/tlacitka.png';
  148.       unPrUV = rect(362,129,362+60,129+41);
  149.       PrUV = rect(362,129,362+60,129+41);
  150.       unPrSize = makepoint(60,40);
  151.       unPrColor = colorrgba(255,255,255,255);
  152.       unPrOffset = makepoint(0,0);
  153.       PrSize = makepoint(64,64);
  154.       PrColor = colorrgba(225,225,225,255);
  155.       PrOffset = makepoint(0,0);
  156.       transTime = 200;
  157.  
  158.       fontColor = colorrgba(0,0,0,255);
  159.       fontRect = rect(5,5,5,5);
  160.       fontName = 'Freebooter';
  161.       fontwidth = 10;
  162.       fontHeight = 30;
  163.       fontWeight = 3;
  164.       highlite = 1;
  165.       hiSize = makepoint(64,64);
  166.       hiOffset = makepoint(0,0);
  167.       hiTrTime = 200;
  168.       hiColor = colorrgba(255,255,255,255);
  169. without;
  170.  
  171. new buttonstyle mmenu_train;
  172. mmenu_train = copybs(mmenu_road);
  173. mmenu_train.unPrUV = rect(422,129,422+60,129+41);
  174. mmenu_train.PrUV = rect(422,129,422+60,129+41);
  175.  
  176. new buttonstyle mmenu_traindark;
  177. mmenu_traindark = copybs(mmenu_train);
  178. mmenu_traindark.unPrColor = colorrgba(150,150,150,160);
  179. mmenu_traindark.PrColor = colorrgba(150,150,150,160);
  180. mmenu_traindark.hiColor = colorrgba(150,150,150,160);
  181.  
  182. new buttonstyle mmenu_build;
  183. mmenu_build = copybs(mmenu_road);
  184. mmenu_build.unPrUV = rect(362,170,362+60,170+41);
  185. mmenu_build.PrUV = rect(362,170,362+60,170+41);
  186.  
  187. new buttonstyle mmenu_stats;
  188. mmenu_stats = copybs(mmenu_road);
  189. mmenu_stats.unPrUV = rect(422,170,422+60,170+41);
  190. mmenu_stats.PrUV = rect(422,170,422+60,170+41);
  191.  
  192.  
  193. end.
  194.